home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 11528 < prev    next >
Encoding:
Text File  |  1996-08-05  |  588 b   |  33 lines

  1. Newsgroups: comp.lang.c++
  2. Path: cs.vu.nl!alverste
  3. From: alverste@cs.vu.nl (Andre Versteeg)
  4. Subject: TYPEDEF help needed
  5. Nntp-Posting-Host: galjoen.cs.vu.nl
  6. Sender: news@cs.vu.nl
  7. Organization: Fac. Wiskunde & Informatica, VU, Amsterdam
  8. Date: Thu, 14 Mar 1996 15:03:22 GMT
  9. X-Newsreader: TIN [version 1.2 PL2]
  10. Message-ID: <Do9J5n.KE7.0.-s@cs.vu.nl>
  11.  
  12. What is wrong with the following:
  13.  
  14. I like to have an array of structs with a certain name:
  15.  
  16. typedef struct Coordinates
  17. {
  18.     int x,y;
  19.  
  20. } Coordinates;
  21.  
  22. typedef Coordinates[100] CoordinatesList;
  23.  
  24.  
  25. Please help me,
  26.  
  27. Greetings,
  28.  
  29. Andre
  30.  
  31.  
  32. S.O.S...
  33.